home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / vol07 / 02 / controls / wep.c < prev   
C/C++ Source or Header  |  1992-02-29  |  709b  |  43 lines

  1. /*
  2.  * WEP.C
  3.  *
  4.  * WEP code for the DLL.  This function is placed in a separate
  5.  * segment so marking the segment as FIXED is not hard on the
  6.  * system.
  7.  *
  8.  * Version 1.1, October 1991, Kraig Brockschmidt
  9.  */
  10.  
  11.  
  12. #include <windows.h>
  13.  
  14.  
  15. /*
  16.  * WEP
  17.  *
  18.  * Purpose:
  19.  *  Required DLL Exit function.  Does nothing.
  20.  *
  21.  * Parameters:
  22.  *  bSystemExit     BOOL indicating if the system is being shut
  23.  *                  down or the DLL has just been unloaded.
  24.  *
  25.  * Return Value:
  26.  *  void
  27.  *
  28.  */
  29.  
  30. void FAR PASCAL WEP(int bSystemExit)
  31.     {
  32.     if (bSystemExit)
  33.         {
  34.         //Shutdown
  35.         }
  36.     else
  37.         {
  38.         //DLL use count is zero
  39.         }
  40.  
  41.     return;
  42.     }
  43.